home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gsio.h < prev    next >
C/C++ Source or Header  |  1996-05-27  |  2KB  |  61 lines

  1. /* Copyright (C) 1989, 1990, 1993, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsio.h */
  20. /* stdio redirection */
  21.  
  22. #ifndef gsio_INCLUDED
  23. #  define gsio_INCLUDED
  24.  
  25. /* The library and interpreter never use stdin/out/err directly. */
  26. extern FILE *gs_stdin, *gs_stdout, *gs_stderr;
  27.  
  28. /* Redefine all the relevant stdio functions to use the above. */
  29. /* Some functions we make illegal, rather than redefining them. */
  30. #undef stdin
  31. #define stdin gs_stdin
  32. #undef stdout
  33. #define stdout gs_stdout
  34. #undef stderr
  35. #define stderr gs_stderr
  36. #undef fgetchar
  37. #define fgetchar() fgetc(stdin)
  38. #undef fputchar
  39. #define fputchar(c) fputc(c, stdout)
  40. #undef getchar
  41. #define getchar() getc(stdin)
  42. #undef gets
  43. #define gets Function._gets_.unavailable
  44. /* We should do something about perror, but since many Unix systems */
  45. /* don't provide the strerror function, we can't.  (No Aladdin-maintained */
  46. /* code uses perror.) */
  47. #undef printf
  48. #define printf Function._printf_.unavailable
  49. #undef putchar
  50. #define putchar(c) fputc(c, stdout)
  51. #undef puts
  52. #define puts(s) (fputs(s, stdout), putchar('\n'))
  53. #undef scanf
  54. #define scanf Function._scanf_.unavailable
  55. #undef vprintf
  56. #define vprintf Function._vprintf_.unavailable
  57. #undef vscanf
  58. #define vscanf Function._vscanf_.unavailable
  59.  
  60. #endif                /* gsio_INCLUDED */
  61.